package net.callumtaylor.asynchttp.processor; import com.google.gson.JsonElement; import com.google.gson.JsonParser; public class JsonProcessor extends Processor<JsonElement> { private StringBuffer stringBuffer; @Override public void onPublishedDownloadProgress(byte[] chunk, int chunkLength, long totalProcessed, long totalLength) { if (stringBuffer == null) { int total = (int)(totalLength > Integer.MAX_VALUE ? Integer.MAX_VALUE : totalLength); stringBuffer = new StringBuffer(Math.max(8192, total)); } if (chunk != null) { try { stringBuffer.append(new String(chunk, 0, chunkLength, "UTF-8")); } catch (Exception e) { e.printStackTrace(); } } } /** * Processes the response from the stream. * This is <b>not</b> ran on the UI thread * * @return The data represented as a gson JsonElement primitive type */ @Override public JsonElement getContent() { return new JsonParser().parse(stringBuffer.toString()); } }